home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Source / MiscInspectorKit / MiscMultiSelInspector.m < prev    next >
Text File  |  1995-04-12  |  603b  |  33 lines

  1. /* MiscMultiSelInspector.m                 
  2.  *
  3.  * This default inspector comes up when there is a Multi Selection.
  4.  *
  5.  * For more interface-info see the header file. In depth information
  6.  * can be found here in the source-code.
  7.  *
  8.  * Written by:         Thomas Engel
  9.  * Created:            09.02.1994 (Copyleft)
  10.  * Last modified:     09.02.1994
  11.  *
  12.  * Copyright (c) 1995 Thomas Engel
  13.  */
  14.  
  15. #import <misckit/misckit.h>
  16.  
  17. @implementation MiscMultiSelInspector
  18.  
  19. - (BOOL)doesHandleSelection
  20. {
  21.     if( [self selectionCount] > 1 )
  22.             return YES;
  23.     else    return NO;
  24. }
  25.  
  26. @end
  27.  
  28. /*
  29.  * History: 09.02.1994 First code entered.
  30.  *
  31.  *
  32.  * Bugs: - No;
  33.  */